class Lab4Ex1Sol
{
  public static void main(String args[])
  {
    int count;
    count = 10;
    while (count > 0)
    {
      System.out.println(count);
      count = count - 1;
    }
  }
}
